/* Auth Modern Styles */
:root {
    --auth-bg-dark: #020617;
    --auth-glass: rgba(255, 255, 255, 0.05);
    --auth-glass-border: rgba(255, 255, 255, 0.1);
    --auth-text-white: #F8F9FA;
    --auth-accent: #FFD700;
    --auth-accent-glow: rgba(255, 215, 0, 0.2);
}

body {
    background-color: var(--auth-bg-dark);
    font-family: 'Inter', sans-serif;
    color: var(--auth-text-white);
    overflow-x: hidden;
}

/* Split Layout */
.auth-container {
    min-height: 100vh;
    display: flex;
    overflow: hidden;
}

.auth-visual-side {
    flex: 1;
    background: radial-gradient(circle at center, #1e1b4b 0%, #020617 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    overflow: hidden;
}

.auth-form-side {
    flex: 0 0 500px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--auth-glass-border);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    position: relative;
}

/* Mesh & 3D Decorations */
.mesh-gradient-bg {
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.15), transparent 60%),
                radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.05), transparent 40%);
    filter: blur(60px);
    z-index: 0;
    animation: mesh-move 20s infinite alternate;
}

@keyframes mesh-move {
    0% { transform: translate(-10%, -10%); }
    100% { transform: translate(10%, 10%); }
}

.floating-asset {
    position: absolute;
    z-index: 1;
    animation: float-slow 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

/* Glass Card Form */
.auth-glass-card {
    background: var(--auth-glass);
    border: 1px solid var(--auth-glass-border);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Inputs */
.form-control, .form-select {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border-radius: 12px;
    padding: 12px 16px; 
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--auth-accent) !important;
    box-shadow: 0 0 0 4px var(--auth-accent-glow);
}

.form-floating label {
    color: rgba(255, 255, 255, 0.6);
}

/* Buttons */
.btn-auth-gold {
    background: var(--auth-accent);
    color: #000;
    border: none;
    font-weight: 700;
    padding: 12px;
    border-radius: 12px;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-auth-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--auth-accent-glow);
    background: #e6c200;
    color: #000;
}

.auth-header h2 {
    font-family: 'Outfit', sans-serif;
    color: var(--auth-text-white);
}

.text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

a.text-secondary {
    color: var(--auth-accent) !important;
    text-decoration: none;
}
a.text-secondary:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .auth-container {
        flex-direction: column;
    }
    .auth-visual-side {
        display: none; /* Hide visual on mobile for cleaner look */
    }
    .auth-form-side {
        flex: 1;
        width: 100%;
        padding: 1.5rem;
    }
}
